Sha256: 1fa9458af7dcb22f012c8c37b832952513fe4989c9dadbe0db0cf58d6f4d9111

Contents?: true

Size: 339 Bytes

Versions: 6

Compression:

Stored size: 339 Bytes

Contents

import { defineConfig } from 'vite'
import path from 'path'
import RubyPlugin from 'vite-plugin-ruby'
import react from '@vitejs/plugin-react-swc'

export default defineConfig({
  plugins: [
    RubyPlugin(),
    react()
  ],
  resolve: {
    alias: [
      { find: '@', replacement: path.resolve(__dirname, 'app/frontend') }
    ]
  }
})

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
flamerb-0.3.0 templates/vite.config.js
flamerb-0.2.3 templates/vite.config.js
flamerb-0.2.0 templates/vite.config.js
flamerb-0.1.3 templates/vite.config.js
flamerb-0.1.2 templates/vite.config.js
flamerb-0.1.1 templates/vite.config.js