mirror of
https://github.com/MichaByte/OnBoard-Live.git
synced 2025-12-06 06:33:40 -05:00
Restructure repo
This commit is contained in:
parent
65ddf2c73d
commit
ccdddb005d
21 changed files with 0 additions and 36 deletions
18
tiling-frontend/vite.config.ts
Normal file
18
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