move interface to src/ folder
@@ -10,7 +10,7 @@
|
|||||||
},
|
},
|
||||||
"action": {
|
"action": {
|
||||||
"browser_style": true,
|
"browser_style": true,
|
||||||
"default_popup": "interface/index.html#settings",
|
"default_popup": "src/interface/index.html#settings",
|
||||||
"default_icon": {
|
"default_icon": {
|
||||||
"32": "icons/icon-32.png",
|
"32": "icons/icon-32.png",
|
||||||
"48": "icons/icon-48.png",
|
"48": "icons/icon-48.png",
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 10 KiB After Width: | Height: | Size: 10 KiB |
|
Before Width: | Height: | Size: 10 KiB After Width: | Height: | Size: 10 KiB |
|
Before Width: | Height: | Size: 4.0 KiB After Width: | Height: | Size: 4.0 KiB |
|
Before Width: | Height: | Size: 591 KiB After Width: | Height: | Size: 591 KiB |
@@ -1,8 +1,7 @@
|
|||||||
/** @type {import('tailwindcss').Config} */
|
/** @type {import('tailwindcss').Config} */
|
||||||
export default {
|
export default {
|
||||||
content: [
|
content: [
|
||||||
"./interface/index.html",
|
"./src/**/*.{js,ts,jsx,tsx,html}",
|
||||||
"./interface/**/*.{js,ts,jsx,tsx}",
|
|
||||||
],
|
],
|
||||||
darkMode: "class",
|
darkMode: "class",
|
||||||
theme: {
|
theme: {
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
import { defineConfig } from 'vite'
|
|
||||||
import { crx } from '@crxjs/vite-plugin'
|
import { crx } from '@crxjs/vite-plugin'
|
||||||
|
import { defineConfig } from 'vite'
|
||||||
import manifest from './manifest.json'
|
import manifest from './manifest.json'
|
||||||
|
|
||||||
export default defineConfig({
|
export default defineConfig({
|
||||||
|
|||||||