@gasket/plugin-webpack
Adds Webpack support to your application.
Installation
npm i @gasket/plugin-webpack
Update your gasket file plugin configuration:
// gasket.js
+ import pluginWebpack from '@gasket/plugin-webpack';
export default makeGasket({
plugins: [
+ pluginWebpack
]
});
Configuration
The Webpack plugin is configured using the gasket.js file.
First, add it to the plugins section of your gasket.js:
export default makeGasket({
plugins: {
pluginWebpack
}
});
If your app was previously using the webpack property in the
gasket.js, you should update your configuration to use the
webpackConfig lifecycle instead.
Actions
getWebpackConfig
This action can be used by plugins that need to gather Webpack configuration.
// Any starting Webpack configuration
const initialConfig = { };
// Any additional context such as isServer or not
const context = { isServer: true };
const webpackConfig = gasket.actions.getWebpackConfig(initialConfig, context);
This action will execute the webpackConfig lifecycle and return the final
Webpack configuration object.
Lifecycles
webpackConfig
Executed by getWebpackConfig action, it receives three parameters:
- The Gasket API
- A Webpack config object
- A context object with the following properties:
webpack- The Webpack API....additionalContext- Additional context may be exposed. For example, in next.js apps, the next.js webpack config options are included.
A hook should return a new Webpack config object derived from the original. The usage of webpack-merge is recommended when doing so since it can properly handle the overloaded types within Webpack config properties, which can be tricky.
import webpackMerge from 'webpack-merge';
export default {
name: 'sample-plugin',
hooks: {
webpackConfig: function webpackConfigHook( gasket, config, context) {
const { isServer, webpack } = context;
return isServer
? config
: webpackMerge.merge(config, {
plugins: [
new webpack.DefinePlugin({
MEANING_OF_LIFE: 42
})
]
});
}
}
};
For more details, see the additional webpack documentation.
GASKET_ENV Protection
This plugin automatically prevents process.env.GASKET_ENV from being bundled in browser code to avoid exposing server-side configuration. If detected, the build will fail with a helpful error message.
Recommended Alternatives
Instead of using process.env.GASKET_ENV in any code:
-
Use
gasket.config.envfor environment-specific configuration:// gasket.js
export default makeGasket({
environments: {
dev: { apiUrl: 'http://localhost:3000' },
prod: { apiUrl: 'https://api.example.com' }
}
}); -
Use
@gasket/datato pass server data to the client:// Server-side (in a lifecycle hook)
export default {
name: 'config-plugin',
hooks: {
publicGasketData(gasket, data) {
return {
...data,
apiUrl: gasket.config.apiUrl,
env: gasket.config.env
};
}
}
};
// Client-side
import { gasketData } from '@gasket/data';
const { apiUrl } = gasketData(); -
Move environment logic to server-side code and expose only necessary data through APIs or
@gasket/data.
For more guidance, see the environment configuration recipes.