My SMM panel
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

преди 3 години
1234567891011
  1. const vuePlugin = require('esbuild-vue');
  2. require('esbuild').build({
  3. entryPoints: ['resources/js/main.js'],
  4. bundle: true,
  5. outfile: 'public/main.js',
  6. plugins: [vuePlugin()],
  7. define: {
  8. "process.env.NODE_ENV": JSON.stringify("development"),
  9. },
  10. });