@LinusBorg I'm mostly using vite these days so require is a showstopper @znck Not sure to get what you mean. Tree-shaking will not happen if the module itself is not found, it will throw an exception (In this case, I want to conditionnaly support vue-router if the end application is...
npm run dev (vite) の場合は、 NODE_ENVがdevelopment npm run build(vite build)の場合は、NODE_ENVがproduction となるのを利用して、defineセクションに、globalを初期化するかどうかを切り替えました。 vite.config.js import{defineConfig}from"vite";importvuefrom"@vitejs/plugin-vue";import{fileU...