enrecipes/webpack.config.js

12 lines
175 B
JavaScript
Raw Normal View History

2021-04-01 12:23:44 +00:00
const webpack = require("@nativescript/webpack");
2020-09-15 11:10:16 +00:00
2021-03-23 06:16:25 +00:00
module.exports = (env) => {
2021-04-01 12:23:44 +00:00
webpack.init(env);
2020-09-15 11:10:16 +00:00
2021-04-01 12:23:44 +00:00
// todo: comments for common usage
2020-09-15 11:10:16 +00:00
2021-04-01 12:23:44 +00:00
return webpack.resolveConfig();
};
2020-09-15 11:10:16 +00:00