ES6 module import syntax is: import
CommonJS module import syntax is: require
all along, I thought that import in ES6 could only import JS files,
import {myExport} from "/modules/my-module.js";
but when using Webpack to package a project, it is found that
css files can also be imported using import in JS files
import "/modules/index.css";
so I would like to ask you the following questions:
1ES6importJScss
2webpackimportES6importES6importJS