13 lines
291 B
TypeScript
13 lines
291 B
TypeScript
import { defineConfig } from 'vite'
|
|
import vue from '@vitejs/plugin-vue'
|
|
import { crx } from '@crxjs/vite-plugin'
|
|
import manifest from './manifest.json' assert { type: 'json' }
|
|
|
|
// https://vite.dev/config/
|
|
export default defineConfig({
|
|
plugins: [
|
|
vue(),
|
|
crx({ manifest }),
|
|
],
|
|
})
|