Files
pezkuwi-extension/packages/extension/webpack.config.cjs
T
pezkuwichain 4a9181d69b Rebrand: polkadot → pezkuwi build fixes
- Fixed webpack.shared.cjs and webpack.config.cjs imports
- Fixed rollup.config.js imports
- Added x-* package resolutions
- Renamed hooks/index.js to hooks/index.ts
- Added pezkuwi-exec-webpack script alias
- Updated tsconfig.base.json with pezkuwi paths
2026-01-07 02:31:08 +03:00

12 lines
323 B
JavaScript

// Copyright 2019-2025 @pezkuwi/extension authors & contributors
// SPDX-License-Identifier: Apache-2.0
const createConfig = require('./webpack.shared.cjs');
module.exports = createConfig({
background: './src/background.ts',
content: './src/content.ts',
extension: './src/extension.ts',
page: './src/page.ts'
});