Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

create-miro-app

Package Overview
Dependencies
Maintainers
5
Versions
71
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

create-miro-app - npm Package Compare versions

Comparing version 1.3.0 to 1.4.0

15

dist/_shared_/vite.config.js

@@ -1,5 +0,9 @@

const path = require('path');
const fs = require('fs');
const {defineConfig} = require('vite');
import path from 'path';
import fs from 'fs';
import dns from 'dns';
import {defineConfig} from 'vite';
// https://vitejs.dev/config/server-options.html#server-host
dns.setDefaultResultOrder('verbatim');
// make sure vite picks up all html files in root, needed for vite build

@@ -16,3 +20,3 @@ const allHtmlEntries = fs

// https://vitejs.dev/config/
module.exports = defineConfig({
export default defineConfig({
build: {

@@ -23,2 +27,5 @@ rollupOptions: {

},
server: {
port: 3000,
},
});

@@ -1,5 +0,9 @@

const path = require('path');
const fs = require('fs');
const {defineConfig} = require('vite');
import path from 'path';
import fs from 'fs';
import dns from 'dns';
import {defineConfig} from 'vite';
// https://vitejs.dev/config/server-options.html#server-host
dns.setDefaultResultOrder('verbatim');
// make sure vite picks up all html files in root, needed for vite build

@@ -16,3 +20,3 @@ const allHtmlEntries = fs

// https://vitejs.dev/config/
module.exports = defineConfig({
export default defineConfig({
build: {

@@ -23,2 +27,5 @@ rollupOptions: {

},
server: {
port: 3000,
},
});

@@ -1,6 +0,10 @@

const path = require('path');
const fs = require('fs');
const {defineConfig} = require('vite');
const reactRefresh = require('@vitejs/plugin-react-refresh');
import path from 'path';
import fs from 'fs';
import dns from 'dns';
import {defineConfig} from 'vite';
import reactRefresh from '@vitejs/plugin-react-refresh';
// https://vitejs.dev/config/server-options.html#server-host
dns.setDefaultResultOrder('verbatim');
// make sure vite picks up all html files in root, needed for vite build

@@ -17,3 +21,3 @@ const allHtmlEntries = fs

// https://vitejs.dev/config/
module.exports = defineConfig({
export default defineConfig({
build: {

@@ -25,2 +29,5 @@ rollupOptions: {

plugins: [reactRefresh()],
server: {
port: 3000,
},
});

@@ -1,6 +0,14 @@

// vite.config.js
import vue from '@vitejs/plugin-vue';
import dns from 'dns';
import {defineConfig} from 'vite';
export default {
// https://vitejs.dev/config/server-options.html#server-host
dns.setDefaultResultOrder('verbatim');
// https://vitejs.dev/config/
export default defineConfig({
plugins: [vue()],
};
server: {
port: 3000,
},
});
{
"name": "create-miro-app",
"version": "1.3.0",
"version": "1.4.0",
"keywords": [

@@ -5,0 +5,0 @@ "miro",

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc