File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed
Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change 5959 "jsdom" : " ^26.0.0" ,
6060 "json-to-graphql-query" : " ^2.3.0" ,
6161 "prettier" : " 3.4.2" ,
62+ "rollup-plugin-node-externals" : " ^8.0.1" ,
6263 "sass" : " ^1.77.8" ,
6364 "sinon" : " ^18.0.0" ,
6465 "stylelint-scss" : " ^6.10.0" ,
Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ import eslintPlugin from "vite-plugin-eslint";
77import path from "path" ;
88import { nodePolyfills } from "vite-plugin-node-polyfills" ;
99import compress from "vite-plugin-compress" ;
10+ import depsExternal from "rollup-plugin-node-externals" ;
1011
1112dns . setDefaultResultOrder ( "verbatim" ) ;
1213
@@ -36,7 +37,8 @@ export default defineConfig({
3637 } ) ,
3738 eslintPlugin ,
3839 nodePolyfills ( ) ,
39- compress
40+ compress ,
41+ depsExternal ( )
4042 ] ,
4143 resolve : {
4244 alias : {
You can’t perform that action at this time.
0 commit comments