mirror of
https://github.com/MichaByte/OnBoard-Live.git
synced 2025-12-06 05:33:40 -05:00
Initial commit
This commit is contained in:
commit
5ad56fac3f
21 changed files with 808 additions and 0 deletions
18
stream/tiling-frontend/vite.config.ts
Normal file
18
stream/tiling-frontend/vite.config.ts
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
import { defineConfig } from 'vite';
|
||||
import { svelte } from '@sveltejs/vite-plugin-svelte';
|
||||
import { viteSingleFile } from 'vite-plugin-singlefile';
|
||||
|
||||
export default defineConfig(({ command }) => ({
|
||||
plugins: [
|
||||
svelte({
|
||||
/* plugin options */
|
||||
}),
|
||||
command === 'build' &&
|
||||
viteSingleFile({
|
||||
removeViteModuleLoader: true
|
||||
})
|
||||
],
|
||||
build: {
|
||||
minify: true
|
||||
}
|
||||
}));
|
||||
Loading…
Add table
Add a link
Reference in a new issue