mirror of
https://github.com/pezkuwichain/pezkuwi-extension.git
synced 2026-04-22 06:47:58 +00:00
5d54192e6d
- Update all copyright headers from 2025 to 2026 - Fix @polkadot references to @pezkuwi in config files - Fix eslint.config.js import path Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
12 lines
323 B
JavaScript
12 lines
323 B
JavaScript
// Copyright 2019-2026 @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'
|
|
});
|