Files
portfolio/src/vite.config.js
LJ5O 02cf36a131 Started to add a notification div
We just need to correctly implement Jquery and we will be able to show notifications in the game
Also updated npm modules
2024-01-08 23:34:32 +01:00

13 lines
226 B
JavaScript

import { defineConfig } from 'vite';
import inject from "@rollup/plugin-inject";
export default defineConfig({
plugins: [
inject({
jQuery: 'jquery',
}),
],
optimizeDeps: {
include: ['jquery'],
},
});