mirror of
https://github.com/siderolabs/omni.git
synced 2025-08-06 17:46:59 +02:00
Some checks are pending
default / default (push) Waiting to run
default / e2e-backups (push) Blocked by required conditions
default / e2e-forced-removal (push) Blocked by required conditions
default / e2e-scaling (push) Blocked by required conditions
default / e2e-short (push) Blocked by required conditions
default / e2e-short-secureboot (push) Blocked by required conditions
default / e2e-templates (push) Blocked by required conditions
default / e2e-upgrades (push) Blocked by required conditions
default / e2e-workload-proxy (push) Blocked by required conditions
Enable `CSP`, `Referrer-Policy`, `X-Frame-Options`, `X-Content-Type-Options`, `Permissions-Policy` headers. `CSP` has broken the monaco editor, so had to drop the monaco vite plugin for production builds. Signed-off-by: Artem Chernyshev <artem.chernyshev@talos-systems.com>
47 lines
1.0 KiB
TypeScript
47 lines
1.0 KiB
TypeScript
// Copyright (c) 2025 Sidero Labs, Inc.
|
|
//
|
|
// Use of this software is governed by the Business Source License
|
|
// included in the LICENSE file.
|
|
|
|
/// <reference types="vitest" />
|
|
|
|
import { defineConfig, UserConfig } from 'vite'
|
|
import { fileURLToPath, URL } from 'node:url'
|
|
import { nodePolyfills } from 'vite-plugin-node-polyfills'
|
|
import monacoEditorPlugin from 'vite-plugin-monaco-editor'
|
|
|
|
import vue from '@vitejs/plugin-vue'
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig(({ command }) => {
|
|
const config: UserConfig = {
|
|
plugins: [
|
|
vue(),
|
|
nodePolyfills({ include: ['stream'] }),
|
|
],
|
|
resolve: {
|
|
alias: {
|
|
'@': fileURLToPath(new URL('./src', import.meta.url)),
|
|
}
|
|
},
|
|
server: {
|
|
port: 8121,
|
|
host: "127.0.0.1"
|
|
},
|
|
};
|
|
|
|
if (command === 'serve') {
|
|
config.plugins?.push(monacoEditorPlugin({
|
|
languageWorkers: ['editorWorkerService'],
|
|
customWorkers: [
|
|
{
|
|
label: 'yaml',
|
|
entry: 'monaco-yaml/yaml.worker'
|
|
}
|
|
]
|
|
}));
|
|
}
|
|
|
|
return config;
|
|
})
|