Walidoux
90720c34f9
Update the VSCode settings.json to include the Prettier VSCode formatter, and enable formatting on save. A new LICENSE file is added to comply with the MIT license due to the open-source nature of the project. The README.md file has now core features and to-dos that should be taken care of as the project continues to evolve. The index.html file is modified to match changes in src/index.tsx. The postcss configuration files are created, and some files are updated. Finally, new files like build.rs, draworder.json, and commands.rs were created
33 lines
1019 B
TypeScript
33 lines
1019 B
TypeScript
import { defineConfig, mergeConfig } from 'vite'
|
|
import baseViteConfig from './vite.config'
|
|
import { tauri } from 'vite-plugin-tauri'
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig(
|
|
mergeConfig(
|
|
baseViteConfig,
|
|
defineConfig({
|
|
plugins: [tauri()],
|
|
// prevent vite from obscuring rust errors
|
|
clearScreen: false,
|
|
// Tauri expects a fixed port, fail if that port is not available
|
|
server: {
|
|
strictPort: true,
|
|
open: false
|
|
},
|
|
// to make use of `TAURI_PLATFORM`, `TAURI_ARCH`, `TAURI_FAMILY`,
|
|
// `TAURI_PLATFORM_VERSION`, `TAURI_PLATFORM_TYPE` and `TAURI_DEBUG`
|
|
// env variables
|
|
envPrefix: ['VITE_', 'TAURI_'],
|
|
build: {
|
|
// Tauri supports es2021
|
|
target: ['es2022', 'chrome100', 'safari13'],
|
|
// don't minify for debug builds
|
|
minify: !process.env.TAURI_DEBUG ? 'esbuild' : false,
|
|
// produce sourcemaps for debug builds
|
|
sourcemap: !!process.env.TAURI_DEBUG,
|
|
}
|
|
})
|
|
)
|
|
);
|