34 lines
681 B
TypeScript
34 lines
681 B
TypeScript
import { defineConfig } from 'vite';
|
|
import react from '@vitejs/plugin-react';
|
|
import { crx } from '@crxjs/vite-plugin';
|
|
import { resolve } from 'path';
|
|
import { readFileSync } from 'fs';
|
|
import fs from 'fs';
|
|
|
|
const manifest = JSON.parse(
|
|
readFileSync('public/manifest.json', 'utf-8')
|
|
);
|
|
|
|
export default defineConfig({
|
|
plugins: [
|
|
react(),
|
|
crx({ manifest }),
|
|
],
|
|
resolve: {
|
|
alias: {
|
|
'@': resolve(__dirname, 'src'),
|
|
},
|
|
},
|
|
build: {
|
|
outDir: 'dist',
|
|
emptyOutDir: true,
|
|
rollupOptions: {
|
|
input: {
|
|
index: resolve(__dirname, 'index.html'),
|
|
},
|
|
},
|
|
},
|
|
// Copy WASM files to the dist directory
|
|
publicDir: 'public',
|
|
});
|