DEV Community

Dimitrios Desyllas
Dimitrios Desyllas

Posted on • Updated on

Webpack and firefox 70: import declarations may only appear at top level of a module

Hello may I have some help regarding this issue?

On firefox 70 using webpack I am developing the following HTML/CSS theme (on the branch occuring the issue) https://github.com/ellakcy/admin-theme/tree/dev

And Using the following webpack configuration:

const path = require('path');
const nodeExternals=require('webpack-node-externals');

module.exports = {
    entry: [
       __dirname+"/src/js/panel.js",
    ],
    output: {
      path: __dirname+'/www',
      publicPath: '/',
      filename: 'panel.js'
    },
    devtool: 'sourcemaps',
    module:

Top comments (0)