@coveops/turbo-webpack-plugins
v1.0.6
Published
Disclaimer: This component was built by the community at large and is not an official Coveo JSUI Component. Use this component at your own risk.
Downloads
5
Maintainers
Keywords
Readme
TurboWebpackPlugins
Disclaimer: This component was built by the community at large and is not an official Coveo JSUI Component. Use this component at your own risk.
Getting Started
- Install the component into your project.
npm i @coveops/turbo-webpack-plugins
- Use the Component or extend it
Typescript:
import { DeploySearchPagePlugin } from '@coveops/turbo-webpack-plugins';
Javascript
const DeploySearchPagePlugin = require('@coveops/turbo-webpack-plugins').DeploySearchPagePlugin;
- You can also expose the component alongside other components being built in your project.
export * from '@coveops/turbo-webpack-plugins'
- Or for quick testing, you can add the script from unpkg
<script src="https://unpkg.com/@coveops/turbo-webpack-plugins@latest/dist/index.min.js"></script>
Disclaimer: Unpkg should be used for testing but not for production.
Contribute
- Clone the project
- Copy
.env.dist
to.env
and update the COVEO_ORG_ID and COVEO_TOKEN fields in the.env
file to use your Coveo credentials and SERVER_PORT to configure the port of the sandbox - it will use 8080 by default. - Build the code base:
npm run build
- Serve the sandbox for live development
npm run serve