Lu Qi

Results 15 comments of Lu Qi
trafficstars

I have a notion I do not know if it is right, that we cannot "import / require" materialize.js, jquery.js in the client.js (webpack entry file), because they are not...

It is like: ``` import makeRouteHooksSafe from './helpers/makeRouteHooksSafe'; import 'materialize-css/bin/materialize.css'; import 'materialize-css/js/jquery.js'; ( I put it there myself ) import 'materialize-css/bin/materialize.js'; const client = new ApiClient(); ``` I do not...

I solved it, Thank you very mcuh!@hank7444 @trueter I generally did as https://github.com/Dogfalo/materialize/issues/1823 suggests (as scourgetheone commented on 31 Jul in the issue). The css and js for 3rd party...

Currently, I am doing this: 1), In dev.config.js (webpack config): add loader: ``` { test: /\.css$/, loader: "style-loader!css-loader" }, ``` Explanation: why we add this one? To let the webpack...